home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.lang.c
- Path: netcom.com!smryan
- From: smryan@netcom.com (@#$%!?!)
- Subject: Re: PUBLIC / PRIVATE
- Message-ID: <smryanDq1LvD.MH7@netcom.com>
- Organization: The Programmer formerly known as S M Ryan
- X-Newsreader: TIN [version 1.2 PL1]
- References: <4l3k8d$hkp@mulga.cs.mu.OZ.AU>
- Date: Thu, 18 Apr 1996 05:28:25 GMT
- Sender: smryan@netcom12.netcom.com
-
- : 2nd question:
- : PRIVATE void HTFWriter_write ARGS3(HTSteam, *, me, CONST char*,
- : s, int, l) { fwrite(s, 1, l, me->fp) }
-
- : What is the ARGS3 ?
-
- You can look for something like
-
- #if wantprototypes
-
- #define ARGS1(A,a) (A a)
- #define ARGS2(A,a,B,b) (A a,B b)
- #define ARGS3(A,a,B,b,C,c) (A a,B b,C c)
-
- #else
-
- #define ARGS1(A,a) (a) A a;
- #define ARGS2(A,a,B,b) (a,b) A a; B b;
- #define ARGS3(A,a,B,b,C,c) (a,b,c) A a; B b; C c;
-
- #endif
- --
- The Queen who loves, the Queen of life, | smryan@netcom.com PO Box 1563
- the Queen who straits, the Queen of strife;| Cupertino, California
- with gasp of death or gift of breath | (xxx)xxx-xxxx 95015
- she brings the choice of birth or knife. | I don't use no smileys
-